33f5693ed617d7df620d8a9b5c4d7c22de8102f3,src/net/java/sip/communicator/impl/callhistory/CallHistoryServiceImpl.java,CallHistoryServiceImpl,convertHistoryRecordToCallRecord,#HistoryRecord#,336
Before Change
new Date(Long.parseLong((String)callParticipantStart.get(i))),
new Date(Long.parseLong((String)callParticipantEnd.get(i)))
);
cpr.setState((CallParticipantState)callParticipantStates.get(i));
result.getParticipantRecords().add(cpr);
}
After Change
);
// if there is no record about the states (backward compability)
if(callParticipantStates != null)
cpr.setState((CallParticipantState)callParticipantStates.get(i));
result.getParticipantRecords().add(cpr);
}